1   /*
2    * Copyright (c) 2004-2005, University Health Network.  All rights reserved. Distributed under the BSD 
3    * license (see http://opensource.org/licenses/bsd-license.php).
4    *  
5    * Created on 22-Dec-2004
6    */
7   package ca.uhn.cache.internal.impl;
8   
9   import junit.framework.TestCase;
10  
11  import org.springframework.context.support.ClassPathXmlApplicationContext;
12  
13  /***
14   * Instantiates a ParamSpaceConfig using <b>spring</b>. 
15   * 
16   * @author <a href="mailto:bryan.tripp@uhn.on.ca">Bryan Tripp</a>
17   * @version $Revision: 1.1 $ updated on $Date: 2005/01/24 22:52:10 $ by $Author: bryan_tripp $
18   */
19  public class SpringParamSpaceConfigTest extends TestCase {
20      
21      
22      private ClassPathXmlApplicationContext myAppContext;
23  
24      /***
25       * {@inheritDoc}
26       */
27      protected void setUp() throws Exception {
28          super.setUp();
29          
30  //        myAppContext = 
31  //            new ClassPathXmlApplicationContext( "ca/uhn/cache/internal/impl/spring-param-space-config.xml" ); 
32                            //SpringTestCaseUtils.getConfigLocation( SpringParamSpaceConfigTest.class ) );
33      }
34  
35      /***
36       * @throws Exception ...
37       */
38     public void testGood1() throws Exception {
39  //       IDimension dim1 = (IDimension) myAppContext.getBean( "dimOne" ); 
40     }
41     
42  }